*{
    margin: 0pt;
    padding: 0pt;
}

body{
    display: grid;
    grid-template-rows: auto auto auto;
    justify-content: stretch;
    font-family: 'Josefin Sans', sans-serif;
}

#header{
    background-color: blueviolet;
    text-align: center;
    padding: 6px;
    background-image: linear-gradient(30deg, red, orange, yellow, green, rgb(41, 94, 238), indigo, rgb(63, 2, 63));
}

#heading{
    font-family: 'Potta One', cursive;
    font-weight: bold;        
}

.tile{
    background-color: black;
    display: grid;
    height: 200px;
    width: 200px; 
    margin: 20px;
    cursor: pointer;
}

.tile:hover{
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2), 0 7.5px 20px 0 rgba(0, 0, 0, 0.19);
}


#options{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    justify-content: space-evenly;
    align-items: center;
}

#footer{
    background-color: #222222;
    color: #ffffff;
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 4px;
    width: 100%;
    text-align: center;
    justify-content: stretch;
    align-items: center ;
    padding: 1vh;
    bottom: 0;
    overflow: hidden;
    position: fixed;
}

#stats{
    display: grid;
    grid-template-columns: 30% 40% 30%;
    margin-bottom: 2px;
}

#new_game_button{
    size: auto;
    font-size: 30px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 10px;
}

.stat{
    size: unset;
    font-size: 30px;
    padding: 2px 4px;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 #afafaf;
}